home *** CD-ROM | disk | FTP | other *** search
/ Aminet 8 / Aminet 8 (1995)(GTI - Schatztruhe)[!][Oct 1995].iso / Aminet / comm / tcp / PutMailSRC.lha / Defaults.h next >
C/C++ Source or Header  |  1995-04-17  |  760b  |  42 lines

  1. #ifndef DEFAULTS
  2. #define DEFAULTS
  3.  
  4. /*
  5.  * General programing defaults.
  6.  *
  7.  * $VER: defaults.h 1.1 (1.4.95)
  8.  */
  9.  
  10.  
  11. #define __Author__ "Martin V Lanza"
  12.  
  13. #ifndef __Program__
  14.    #define __Program__ "ProgramName"
  15. #endif   
  16.  
  17. #ifndef __Version__
  18.    #define __Version__ "#.##"
  19. #endif   
  20.  
  21.  
  22. #define __USE_SYSBASE
  23. #define ASL_V38_NAMES_ONLY
  24. #define INTUI_V36_NAMES_ONLY
  25.  
  26.  
  27. /* To ensure that autoinitializations fail if OS prior to 2.04 */
  28.  
  29. long __oslibversion = 37;
  30.  
  31.  
  32. /* StdIO Window defaults */
  33.  
  34. #define STDIOV37 "/AUTO/NOCLOSE/SIMPLE"
  35. #define STDIOWIN "CON:0/28/580/200/" __Program__
  36. #define STDIO STDIOWIN STDIOV37
  37. char __stdiov37[] = STDIOV37;
  38. char __stdiowin[] = STDIOWIN;
  39.  
  40. char Version[] = "$VER: " __Program__ " " __Version__ " " __AMIGADATE__;
  41.  
  42. #endif /* DEFAULTS */